home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / bisonpcb.zip / MACHINE.H < prev    next >
Text File  |  1987-02-11  |  1KB  |  27 lines

  1. /* Define machine-dependencies for bison,
  2.    Copyright (C) 1984 Bob Corbett and Free Software Foundation, Inc.
  3.  
  4. BISON is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the BISON General Public License for full details.
  9.  
  10. Everyone is granted permission to copy, modify and redistribute BISON,
  11. but only under the conditions described in the BISON General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with BISON so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.  
  17.  In other words, you are welcome to use, share and improve this program.
  18.  You are forbidden to forbid anyone else to use, share and improve
  19.  what you give them.   Help stamp out software-hoarding!  */
  20.  
  21. #define    MAXSHORT    32767
  22. #define    MINSHORT    -32768
  23.  
  24. #define    BITS_PER_WORD    16    /* WG */
  25. #define    WORDSIZE(n)    (((n) + BITS_PER_WORD - 1) / BITS_PER_WORD)    /* WG */
  26. #define    SETBIT(x, i)    ((x)[(i)>>4] |= (1<<((i) & 15)))    /* WG */
  27.